home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / usr_-_Usr_Files / INCLUDE / ELF.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  351b  |  17 lines

  1. #ifndef _ELF_H
  2. #define _ELF_H
  3.  
  4. #include <linux/elf.h>
  5.  
  6. struct nlist
  7. {
  8.   char            *n_name;    /* symbol name */
  9.   long            n_value;    /* value of symbol */
  10.   short            n_scnum;    /* section number */
  11.   unsigned short    n_type;        /* type and derived type */
  12.   char            n_sclass;    /* storage class */
  13.   char            n_numaux;    /* number of aux. entries */
  14. };
  15.  
  16. #endif /* _ELF_H */
  17.